var github.com/klauspost/compress/flate.offsetCodes
8 uses
github.com/klauspost/compress/flate (current package)
token.go#L89: var offsetCodes = [256]uint32{
token.go#L367: if off < uint32(len(offsetCodes)) {
token.go#L368: return offsetCodes[off&255]
token.go#L369: } else if off>>7 < uint32(len(offsetCodes)) {
token.go#L370: return offsetCodes[(off>>7)&255] + 14
token.go#L372: return offsetCodes[(off>>14)&255] + 28
token.go#L375: if off < uint32(len(offsetCodes)) {
token.go#L376: return offsetCodes[uint8(off)]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |